Rem
Rem
 
Parameters: NONE
Returns: NONE
 

      Rem allows you to place is a single line remark in your code.

      You can use remarks to provide a better description of what your program is doing. PlayBASIC supports single line remarks which affect a single line and block remarks which effect multiple lines. Block remarks consist of keywords or symbol pairs that indicate the start and the end of the block.


      PlayBASIC supports the following symbolic comments for your code also:


Symbolic Single Line Remarks

;

`

//




Mini Tutorial:


      Adding single line comments to a program.

  
  
Rem  This Line is comment, not code
;   and another comment line
  //  and another comment line (C style)
`   and another comment line
  
  Print "The previous comment lines were ignored by the compiler"
  
  
Rem Display the Screen and wait for a key press
  Sync
  WaitKey
  





 
Related Info: Remarks | RemStart :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com